c8e56b1c72d36484ef170db449ad12b7fe35908d,source/com/intellij/codeInspection/dataFlow/instructions/MethodCallInstruction.java,MethodCallInstruction,MethodCallInstruction,#PsiCallExpression#DfaValueFactory#,30

Before Change


    myCall = call;
    myFactory = factory;
    final PsiMethod callee = call.resolveMethod();
    final PsiExpression[] args = myCall.getArgumentList().getExpressions();
    myArgsCount = args.length;

    if (callee != null) {

After Change


    myCall = call;
    myFactory = factory;
    final PsiMethod callee = call.resolveMethod();
    final PsiExpressionList argList = myCall.getArgumentList();
    final PsiExpression[] args = argList != null ? argList.getExpressions() : null;
    myArgsCount = args.length;

    if (callee != null) {